版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2013/10/01/2013-10-01-CODE 54 Word Search/
访问原文「CODE 54. Word Search」
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where “adjacent” cells are those horizontally or vertically neighboring. The same letter cell may not be used more than once.
For example,
Givenboard=
[
[“ABCE”],
[“SFCS”],
[“ADEE”]
]
word = "ABCCED"
, -> returnstrue
,
word = "SEE"
, -> returnstrue
,
word = "ABCB"
, -> returnsfalse
.
|
|